net/http.http2priorityNode.kids (field)

15 uses

	net/http (current package)
		h2_bundle.go#L11173: 	kids       *http2priorityNode // start of the kids list
		h2_bundle.go#L11187: 			parent.kids = n.next
		h2_bundle.go#L11203: 		n.next = parent.kids
		h2_bundle.go#L11208: 		parent.kids = n
		h2_bundle.go#L11229: 	if n.kids == nil {
		h2_bundle.go#L11242: 	w := n.kids.weight
		h2_bundle.go#L11244: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L11251: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11262: 	for n.kids != nil {
		h2_bundle.go#L11263: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L11264: 		n.kids.setParent(nil)
		h2_bundle.go#L11270: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11440: 		k := parent.kids
		h2_bundle.go#L11516: 	for n.kids != nil {
		h2_bundle.go#L11517: 		n.kids.setParent(n.parent)